PerformSearchResponse

data class PerformSearchResponse(searchId: String, resultCount: Int)

Represents response frame that is returned from DOM#performSearch operation call. Searches for a given string in the DOM tree. Use getSearchResults to access search results or cancelSearch to end this search session.

See also

Constructors

PerformSearchResponse
Link copied to clipboard
fun PerformSearchResponse(searchId: String, resultCount: Int)

Properties

resultCount
Link copied to clipboard
val resultCount: Int
Number of search results.
searchId
Link copied to clipboard
val searchId: String
Unique search session identifier.

Sources

jvm source
Link copied to clipboard